4. 先建立<div class="introduce"></div>,再放入內容
> <div class="introduce">
> <div class="introduce-list">
> 施肥
> 剪枝
> 除草
> 包袋
> 採收
> </div>
> <div class="introduce-img">放入圖片</div>
** Div 是區塊元素,所以是上下排列,不能做左右排列**
CSS中,控制introduce:
.introduce-list{
width: 30%;
height: 300px;
background-color: #D7F9D7;
}
.introduce-img{
width: 40%;
height: 300px;
background-color:#C7ECF1;
}
.float-right{
width: 30%;
height: 300px;
background-color: #F8BCBC;
}
.introduce-list{
width: 30%;
height: 300px;
background-color: #D7F9D7;
float: left;
}
.introduce-img{
width: 40%;
height: 300px;
background-color:#C7ECF1;
float: left;
}
※float: left 是指區塊靠左對齊
LINE創辦人 李海珍:
「能活下來的不是強者與智者,而是最能夠適應環境的人」